home *** CD-ROM | disk | FTP | other *** search
/ Interplay's Learn to Program Basic (Review Copy) / Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO / pc / ltpbasic / refxmpl / pget.bas < prev    next >
BASIC Source File  |  1998-04-07  |  144b  |  12 lines

  1. Rem Move mouse around picture
  2. Rem to see pixel values
  3. BACKGROUND "Whitehse"
  4. While TRUE
  5. p = PGet(MouseX,MouseY)
  6. Home
  7. Print p;
  8. Print "  "
  9. Wend
  10.  
  11.